crypto/tls.clientHelloMsg.sessionId (field)
12 uses
crypto/tls (current package)
handshake_client.go#L123: hello.sessionId = make([]byte, 32)
handshake_client.go#L124: if _, err := io.ReadFull(config.rand(), hello.sessionId); err != nil {
handshake_client.go#L744: return hs.session != nil && hs.hello.sessionId != nil &&
handshake_client.go#L745: bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
handshake_client_tls13.go#L148: if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_messages.go#L74: sessionId []byte
handshake_messages.go#L295: b.AddBytes(m.sessionId)
handshake_messages.go#L375: !readUint8LengthPrefixed(&s, &m.sessionId) {
handshake_server.go#L510: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server_tls13.go#L159: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server_tls13.go#L576: !bytes.Equal(ch.sessionId, ch1.sessionId) ||
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |